home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue30 / diffm133 / DIFFM133.ZIP / DIFFMAKE.TXT < prev    next >
Encoding:
Text File  |  1997-12-26  |  1.1 KB  |  21 lines

  1. Suppose that you must send to smb. a 5mb file via e-mail (or other way) each 
  2. two or three days. Suppose that only 8% of this file is changed and 92% of 
  3. its contents remains the same. First time you send whole 5MB file. But after 
  4. that you don't need to send all 5MB. You should use program which will "find" 
  5. these 8%,"cut" them from the file and send only this small portion. And later 
  6. on receiving side combine received 8% with old version of the file. 
  7.  
  8. Difference Maker compresses file taking into account previous file version. 
  9. Data integrity is checked with CRC32 algorithm. Diff Maker was designed for 
  10. working with huge files (50-100MB isn't a problem) and optimized for speed. 
  11.  
  12. For example we use Diff Maker for compressing database dumps. Also Diff Maker 
  13. can be used for creating installation packages when newer version of program 
  14. wasn't changed too much from older version.
  15.  
  16.  
  17. Run diff.exe without parameters and help will be shown.
  18.  
  19. Now compressed with diffmaker files can be compressed with ordinary 
  20. compression program (RAR,PKZIP,etc.) /it will reduce size of the delta file/
  21.